home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1999 #5 / 1999 CD 5 (black).iso / Delphi3 / install / data.z / DBPWDLG.INT < prev    next >
Encoding:
Text File  |  1997-08-05  |  1.0 KB  |  35 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Delphi Visual Component Library                 }
  5. {                                                       }
  6. {       Copyright (c) 1995,97 Borland International     }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit DBPWDlg;
  11.  
  12. interface
  13.  
  14. uses Windows, Classes, Graphics, Forms, Controls, StdCtrls;
  15.  
  16. type
  17.   TPasswordDialog = class(TForm)
  18.     GroupBox1: TGroupBox;
  19.     Edit: TEdit;
  20.     AddButton: TButton;
  21.     RemoveButton: TButton;
  22.     RemoveAllButton: TButton;
  23.     OKButton: TButton;
  24.     CancelButton: TButton;
  25.     procedure EditChange(Sender: TObject);
  26.     procedure AddButtonClick(Sender: TObject);
  27.     procedure RemoveButtonClick(Sender: TObject);
  28.     procedure RemoveAllButtonClick(Sender: TObject);
  29.     procedure OKButtonClick(Sender: TObject);
  30.   end;
  31.  
  32. function PasswordDialog(ASession: TComponent): Boolean;
  33.  
  34. implementation
  35.